home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / SASC_6.0_Disk_4.adf / Compiler_Headers / Include / clib / asl_protos.h < prev    next >
C/C++ Source or Header  |  1992-07-30  |  1KB  |  34 lines

  1. #ifndef  CLIB_ASL_PROTOS_H
  2. #define  CLIB_ASL_PROTOS_H
  3. /*
  4. **    $Filename: clib/asl_protos.h $
  5. **    $Release: 2.04 Includes, V37.4 $
  6. **    $Revision: 36.2 $
  7. **    $Date: 91/01/23 $
  8. **
  9. **    C prototypes. For use with 32 bit integers only.
  10. **
  11. **    (C) Copyright 1990-1991 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. */
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. #ifndef  UTILITY_TAGITEM_H
  18. #include <utility/tagitem.h>
  19. #endif
  20. #ifndef  LIBRARIES_ASL_H
  21. #include <libraries/asl.h>
  22. #endif
  23. /*--- functions in V36 or higher (distributed as Release 2.0) ---*/
  24.  
  25. struct FileRequester *AllocFileRequest( void );
  26. void FreeFileRequest( struct FileRequester *fileReq );
  27. BOOL RequestFile( struct FileRequester *fileReq );
  28. APTR AllocAslRequest( unsigned long type, struct TagItem *tagList );
  29. APTR AllocAslRequestTags( unsigned long type, Tag Tag1, ... );
  30. void FreeAslRequest( APTR request );
  31. BOOL AslRequest( APTR request, struct TagItem *tagList );
  32. BOOL AslRequestTags( APTR request, Tag Tag1, ... );
  33. #endif     /* CLIB_ASL_PROTOS_H */
  34.